/*########################################################*/
/*#################### OLD ONES ##########################*/
/*########################################################*/


@media (max-height: 768px){
    #kc-content {
        margin: 0!important;
    }
    .kc-form-group-buttons {
        margin-top: 0!important;
    }
    .kc-banner {
        padding: 0;
    }
    .kc-banner img {
        max-width: 10rem!important;
    }
    #kc-form-wrapper {
        margin: 0.5rem;
    }
 
    .kc-login-account-sub-title{
        margin: 0.4rem 0;
    }
}

@media (max-width: 1200px) {
    .footer-container {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-inner {
        flex-basis: 48%;
        flex-grow: 1;
    }
}

/*########################################################*/
/*#################### NEW ONES ##########################*/
/*########################################################*/

/** Mobile Devices - Portrait**/
@media screen and (max-width: 480px) {
 
} 

/** Mobile Devices - Landscape **/
@media screen and (min-width: 481px) and (max-width: 600px) {
} 

/** Tablet Devices - Portrait **/
@media screen and (min-width: 601px) and (max-width: 767px) {
} 


/** Tablet Devices - Landscape **/

@media screen and (min-width: 768px){
    .kc-banner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 3rem;
    }

    .kc-banner img {
        max-width: 15rem;
    }

    .kc-banner div {
/*        max-width: 16rem; */
    }


    #kc-content {
        align-items: center;
        justify-content: center;
        display: flex;
        margin: 1rem 0 1rem 0;
    }

    #kc-content-wrapper {
        max-width: max-content;
        /*min-width: 20rem; */
        /* min-width: calc(100vw - clamp(10vw, 45vw, 80vw)); */
        min-width: clamp(20rem, 40vw, 35rem);
    }

    #kc-form-buttons {
        margin-top: 1rem;
        align-self: center;
    }

    .kc-form-options-wrapper {
        margin-top: 0;
        align-self: stretch;
    }

    .kc-alert {
        max-width:25rem;
        margin-top: 0.5rem;
        justify-self: center;
    }

    .kc-alert-title {
        font-size: 1rem;
        font-weight: bolder;
    }

    footer {
        flex-grow: 1;
    }

    footer>div {
        flex-direction: row;
        justify-content: space-around;
    }

    #kc-logout-confirm {
        margin: 1rem 0 1rem 0;
    }
    #kc-error-message {
        margin: 5rem 3rem 5rem 3rem;
    }

    #kc-form-trusted-device-name {
        margin: 2rem;
        width: 36rem;
        max-width: 36rem;
    }

   .kc-form-group-buttons { 
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: baseline;
        gap: 7rem;
        margin-top: 2rem;
   } 
} 

@media screen and (min-width: 768px) and (max-width: 1024px) {
    
} 

/** Small Desktop and Laptop Devices **/
@media screen and (min-width: 1025px) and (max-width: 1280px) {

} 

/** Large Desktop Devices **/
@media  screen and (min-width: 1281px){

} 


/** Chromebook **/
@media screen and (min-width: 1024px) and (max-height: 500px)  {
/*
   #footer,#kc-header{
        display: none;
    }
*/
    .chromebook {
        display: none;
    }

    .kc-banner div {
        max-width: 40rem;
    }

    .kc-banner>div div {
        margin-top: 0.4rem;
        flex-direction: row;
        display: flex;
    }

    .kc-banner>img {
        max-width: 7rem !important; 
    }

    #password-validation-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    #password-validation-wrapper > div:first-child {
        width: 100%; /* Keeps the title on its own line */
        align-content: center;
    }

    #password-validation-wrapper .validation-input {
        width: 25%; /* Puts the 4 validation rules on 2 lines */
    }

    #password-validation-wrapper > div:last-child {
        width: 50%; /* Keeps the title on its own line */
    }

}

@media screen and (min-width: 1024px) and (max-height: 900px)  {


} 